home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Music Box PC
/
Music Box PC(1995).iso
/
start.bat
< prev
next >
Wrap
DOS Batch File
|
1995-07-26
|
1KB
|
70 lines
@ECHO OFF
cls
ECHO ┌──────────────────────────────────────────────────────────────────┐
ECHO │ Das Programm muß vor dem ersten Aufruf installiert werden! │
ECHO │ Die Installation muß immer auf Laufwerk C: in dem von dem │
echo │ jeweiligen Programm zuerst vorgeschlagenen Verzeichnis erfolgen!│
ECHO └──────────────────────────────────────────────────────────────────┘
pause
if "%1"=="" goto ende
if "%1"=="1" goto XTRACKER
if "%1"=="2" goto CREATOR
if "%1"=="3" goto KINGDAT
if "%1"=="4" goto MP210
if "%1"=="5" goto PLAYER
if "%1"=="6" goto TRAY
goto ende
:XTRACKER
SET PRG=XT.exe
SET DIR=XTRACKER
goto install
:CREATOR
SET PRG=CREATOR.exe
SET DIR=CREATOR
goto install
:KINGDAT
SET PRG=KINGMOD.exe
SET DIR=KINGDAT
goto install
:MP210
SET PRG=MP210.com
SET DIR=MP210
goto install
:PLAYER
SET PRG=cdplayer.exe
SET DIR=PLAYER
goto install
:TRAY
c:\
cd c:\cdtray
win cdtray
goto ende
:install
c:\
cd C:\%DIR%
%PRG%
goto ende
:ende
exit